home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Modules / newmodule.c < prev    next >
Text File  |  1996-01-22  |  5KB  |  187 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Module new -- create new objects of various types */
  26.  
  27. #include "allobjects.h"
  28. #include "compile.h"
  29.  
  30. static char new_im_doc[] =
  31. "Create a instance method object from (FUNCTION, INSTANCE, CLASS).";
  32.  
  33. static object *
  34. new_instancemethod(unused, args)
  35.     object* unused;
  36.     object* args;
  37. {
  38.     object* func;
  39.     object* self;
  40.     object* classObj;
  41.  
  42.     if (!newgetargs(args, "O!O!O!",
  43.             &Functype, &func,
  44.             &Instancetype, &self,
  45.             &Classtype, &classObj))
  46.         return NULL;
  47.     return newinstancemethodobject(func, self, classObj);
  48. }
  49.  
  50. /* XXX These internal interfaces have changed -- who'll fix this code? */
  51. #if 0
  52.  
  53. static char new_function_doc[] =
  54. "Create a function object from (CODE, GLOBALS, [NAME, ARGCOUNT, ARGDEFS]).";
  55.  
  56. static object *
  57. new_function(unused, args)
  58.     object* unused;
  59.     object* args;
  60. {
  61.     object* code;
  62.     object* globals;
  63.     object* name = None;
  64.     int argcount = -1;
  65.     object* argdefs = None;
  66.     funcobject* newfunc;
  67.  
  68.     if (!newgetargs(args, "O!O!|SiO!",
  69.             &Codetype, &code,
  70.             &Mappingtype, &globals,
  71.             &name,
  72.             &argcount,
  73.             &Tupletype, &argdefs))
  74.         return NULL;
  75.  
  76.     newfunc = (funcobject *)newfuncobject(code, globals);
  77.     if (newfunc == NULL)
  78.         return NULL;
  79.  
  80.     if (name != None) {
  81.         XINCREF(name);
  82.         XDECREF(newfunc->func_name);
  83.         newfunc->func_name = name;
  84.     }
  85.     newfunc->func_argcount = argcount;
  86.     if (argdefs != NULL) {
  87.         XINCREF(argdefs);
  88.         XDECREF(newfunc->func_argdefs);
  89.         newfunc->func_argdefs  = argdefs;
  90.     }
  91.  
  92.     return (object *)newfunc;
  93. }
  94. #endif
  95.  
  96. static char new_code_doc[] =
  97. "Create a code object from (ARGCOUNT, NLOCALS, FLAGS, CODESTRING, CONSTANTS, NAMES, VARNAMES, FILENAME, NAME).";
  98.  
  99. static object *
  100. new_code(unused, args)
  101.     object* unused;
  102.     object* args;
  103. {
  104.     int argcount;
  105.     int nlocals;
  106.     int flags;
  107.     object* code;
  108.     object* consts;
  109.     object* names;
  110.     object* varnames;
  111.     object* filename;
  112.     object* name;
  113.   
  114. #if 0
  115.     if (!newgetargs(args, "SO!O!SS",
  116.             &code, &Tupletype, &consts, &Tupletype, &names,
  117.             &filename, &name))
  118.         return NULL;
  119.     return (object *)newcodeobject(code, consts, names, filename, name);
  120. #else
  121.     if (!newgetargs(args, "iiiSO!O!O!SS",
  122.             &argcount, &nlocals, &flags,    /* These are new */
  123.             &code, &Tupletype, &consts, &Tupletype, &names,
  124.             &Tupletype, &varnames,        /* These are new */
  125.             &filename, &name))
  126.         return NULL;
  127.     return (object *)newcodeobject(argcount, nlocals, flags,
  128.         code, consts, names, varnames, filename, name);
  129. #endif
  130. }
  131.  
  132. static char new_module_doc[] =
  133. "Create a module object from (NAME).";
  134.  
  135. static object *
  136. new_module(unused, args)
  137.     object* unused;
  138.     object* args;
  139. {
  140.     char *name;
  141.   
  142.     if (!newgetargs(args, "s", &name))
  143.         return NULL;
  144.     return newmoduleobject(name);
  145. }
  146.  
  147. static char new_class_doc[] =
  148. "Create a class object from (NAME, BASE_CLASSES, DICT).";
  149.  
  150. static object *
  151. new_class(unused, args)
  152.     object* unused;
  153.     object* args;
  154. {
  155.     object * name;
  156.     object * classes;
  157.     object * dict;
  158.   
  159.     if (!newgetargs(args, "SO!O!", &name, &Tupletype, &classes,
  160.             &Mappingtype, &dict))
  161.         return NULL;
  162.     return newclassobject(classes, dict, name);
  163. }
  164.  
  165. static struct methodlist new_methods[] = {
  166.     {"instancemethod",    new_instancemethod,    1, new_im_doc},
  167. #if 0
  168.     {"function",        new_function,        1, new_function_doc},
  169. #endif
  170.     {"code",        new_code,        1, new_code_doc},
  171.     {"module",        new_module,        1, new_module_doc},
  172.     {"classobj",        new_class,        1, new_class_doc},
  173.     {NULL,            NULL}        /* sentinel */
  174. };
  175.  
  176. char new_doc[] =
  177. "Functions to create new objects used by the interpreter.\n\
  178. \n\
  179. You need to know a great deal about the interpreter to use this!";
  180.  
  181. void
  182. initnew()
  183. {
  184.     initmodule4("new", new_methods, new_doc, (object *)NULL,
  185.             PYTHON_API_VERSION);
  186. }
  187.